home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / njsort11.arc / NJSORTO < prev   
Text File  |  1989-01-02  |  318b  |  16 lines

  1. #
  2. # MAKE file for optimized version of NJSORT
  3. # (C) Copyright 1988 by Mike Blaszczak
  4. # Version 1.00 of 08 May 1988
  5. #
  6.  
  7. njsort.obj    :    njsort.c
  8.     cl -c -W3 -Ox -AC njsort.c
  9.  
  10. compares.obj    :    compares.asm
  11.     masm /Ml /W2 compares;
  12.  
  13. njsort.exe    :    njsort.obj compares.obj
  14.     link njsort+compares,/noe /noi /exepack;
  15.  
  16.